steam_get_stat_avg_rate

语法:

steam_get_stat_avg_rate(stat_name);


参数 描述
stat_name The name of the statistic to get (a string).


返回: Real(实数)


描述

With this function you can get the value of a specific average statistic. The statistic should have been previously defined on the Steamworks control panel accounts page for your game and the string that is passed to the function should match that used as the API Name on the control panel.


例如:

var avg = steam_get_stat_avg_rate("PointsPerHour");
draw_text(8, 8, "PPH = " + string(avg);

The above code gets the current value for the average statistic "PointsPerHour" and draws it on the screen.